ListLinePlot
Wolfram Kernel
Execution environment
Plots a line like Plot through the list of points provided
ListLinePlot[{y1, y2, y3, ...}]
Options
The same as for Plot
Examples
Plot a list of values
ListLinePlot[{1, 1, 2, 3, 5, 8}]
Add a filling under the line
ListLinePlot[Prime[Range[25]], Filling -> Axis]
Random walk
ListLinePlot[Accumulate[RandomReal[{-1, 1}, {250, 2}]]]
Dev notes
This function does not support dynamic updates, please use raw Graphics
or alternative way - ListLinePlotly to animate your data.